-
Notifications
You must be signed in to change notification settings - Fork 5
fix: incorrect hex representation of Unicode characters (Example: \x2019 instead of \x{2019}) #222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your proposed fix is not what you implemented here, or I'm reading it wrong? 🤔
Oops, missed the update in the issue. \u2019 does not work with go regex, but \x{2019} works everywhere. Updated the issue accordingly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would wait for @theseion, but LGTM.
Co-authored-by: Max Leske <250711+theseion@users.noreply.github.com>
Co-authored-by: Max Leske <250711+theseion@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! Much appreciated.
@soujanyanmbri please consider signing your commits. We have policies in place that require commits to be signed. |
Sure!! Will do it next time. Thank you :) |
Reference Issue: #221